Some checks failed
build / Build (push) Failing after 7s
test / Run tests (push) Failing after 10s
43 lines
764 B
JSON
43 lines
764 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"lib": [
|
|
"DOM",
|
|
"ES2020",
|
|
"WebWorker"
|
|
],
|
|
"module": "ESNext",
|
|
"jsx": "react-jsx",
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"skipLibCheck": true,
|
|
"isolatedModules": true,
|
|
"resolveJsonModule": true,
|
|
"moduleResolution": "bundler",
|
|
"experimentalDecorators": true,
|
|
"useDefineForClassFields": true,
|
|
"allowImportingTsExtensions": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@App/*": [
|
|
"src/*"
|
|
],
|
|
"@Packages/*": [
|
|
"packages/*"
|
|
],
|
|
"@Tests/*": [
|
|
"tests/*"
|
|
]
|
|
},
|
|
},
|
|
"include": [
|
|
"src",
|
|
"packages",
|
|
"tests"
|
|
],
|
|
"ts-node": {
|
|
"compilerOptions": {
|
|
"module": "CommonJS"
|
|
}
|
|
}
|
|
} |