22 lines
567 B
JSON
22 lines
567 B
JSON
{
|
|
"$schema": "http://json.schemastore.org/tsconfig",
|
|
"compilerOptions": {
|
|
"typeRoots": ["./node_modules/@types", "./src/types"],
|
|
"strict": true,
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "NodeNext",
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"types": [""],
|
|
"noEmit": true,
|
|
"isolatedModules": true,
|
|
"noImplicitAny": true,
|
|
"alwaysStrict": true,
|
|
"outDir": "build",
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
]
|
|
}
|