21 lines
428 B
JSON
21 lines
428 B
JSON
|
{
|
||
|
"include": ["../src/**/*.ts", "../src/**/*.tsx"],
|
||
|
"exclude": ["../node_modules"],
|
||
|
"compilerOptions": {
|
||
|
"strict": true,
|
||
|
"module": "commonjs",
|
||
|
"target": "ES5",
|
||
|
"noImplicitAny": true,
|
||
|
"moduleResolution": "node",
|
||
|
"esModuleInterop": true,
|
||
|
"jsx": "react",
|
||
|
"lib": [ "ES2020", "DOM" ],
|
||
|
|
||
|
"baseUrl": "../src/",
|
||
|
"paths": {
|
||
|
"~/*": ["./js/*"],
|
||
|
"@json/*": ["./json/*"]
|
||
|
},
|
||
|
}
|
||
|
}
|