mirror of
https://github.com/morten-olsen/morten-olsen.github.io.git
synced 2026-02-08 01:46:28 +01:00
29 lines
658 B
JSON
29 lines
658 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2018",
|
|
"module": "commonjs",
|
|
"strict": true,
|
|
"jsx": "react-jsx",
|
|
"esModuleInterop": true,
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"sourceMap": true,
|
|
"skipLibCheck": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./*"]
|
|
"types/*": ["../../../types/*"],
|
|
"types": ["../../../types"]
|
|
}
|
|
},
|
|
"ts-node": {
|
|
"files": true
|
|
},
|
|
"include": ["./**/*", "../../../types/**/*"],
|
|
}
|