Archived
1
0
Fork 0
This repository has been archived on 2024-07-25. You can view files and clone it, but cannot push or open issues or pull requests.
paren/tsconfig.json

23 lines
497 B
JSON
Raw Normal View History

2022-03-14 10:32:45 +03:00
{
"compilerOptions": {
"outDir": "lib",
2022-03-17 12:07:18 +03:00
"target": "esnext",
"module": "esnext",
"lib": [],
2022-03-14 10:32:45 +03:00
"moduleResolution": "node",
2022-03-16 22:45:15 +03:00
"declaration": true,
2022-03-14 10:32:45 +03:00
"rootDir": "src",
"forceConsistentCasingInFileNames": true,
"suppressImplicitAnyIndexErrors": true,
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": true
},
"include": [
2022-03-17 11:53:53 +03:00
"src/**/*.mts"
2022-03-14 10:32:45 +03:00
],
}