mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2025-11-28 07:35:50 +00:00
Create tsconfig.json
This commit is contained in:
18
content/_code-samples/create-amm/ts/tsconfig.json
Normal file
18
content/_code-samples/create-amm/ts/tsconfig.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"target": "es2016",
|
||||
/* Modules */
|
||||
"module": "commonjs",
|
||||
"sourceMap": true,
|
||||
"outDir": "./dist",
|
||||
"esModuleInterop": true,
|
||||
// "preserveSymlinks": true,
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
/* Type Checking */
|
||||
"strict": true,
|
||||
"skipLibCheck": true
|
||||
},
|
||||
"include": [
|
||||
"src/**/*"
|
||||
],
|
||||
}
|
||||
Reference in New Issue
Block a user