mirror of
https://github.com/rharkor/caching-for-turbo.git
synced 2025-06-08 01:37:01 +09:00
19 lines
500 B
JSON
19 lines
500 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"rootDir": "./src",
|
|
"moduleResolution": "bundler",
|
|
"baseUrl": "./",
|
|
"sourceMap": true,
|
|
"outDir": "./dist",
|
|
"noImplicitAny": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"newLine": "lf"
|
|
},
|
|
"exclude": ["./dist", "./node_modules", "./__tests__", "./coverage"]
|
|
}
|